home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / hobby / ast44src.zip / MAKEFILE < prev    next >
Text File  |  1995-02-11  |  1KB  |  34 lines

  1. # Astrolog (Version 4.40) File: makefile (PC version)
  2. #
  3. # IMPORTANT NOTICE: The graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1995 by Walter D. Pullen
  5. # (astara@u.washington.edu). Permission is granted to freely use and
  6. # distribute these routines provided one doesn't sell, restrict, or
  7. # profit from them in any way. Modification is allowed provided these
  8. # notices remain with any altered or edited versions of the program.
  9. #
  10. # This Makefile created for Microsoft nmake utility.
  11. # First created 2/9/1993.
  12. #
  13. # Generally, all that needs to be done to compile (once astrolog.h has been
  14. # customized), is compile each source file, and link them together with the
  15. # math library, and if applicable, the Microsoft C graphics library.
  16. #
  17. #If you have a 286 or higher processor, you can add /G2 to the line below.
  18. #if you have a math coprocessor, you can add /FPi to the line below.
  19. CFLAGS = /nologo /AL /Gt50 /W3 /Ot /Oe /Ol /Op /Gs
  20. #CFLAGS = /nologo /AL /Gt50 /W3 /G2 /FPi
  21.  
  22. CC = cl
  23. name = astrolog
  24. objs = astrolog.obj data.obj data2.obj general.obj io.obj\
  25.  calc.obj matrix.obj placalc.obj placalc2.obj\
  26.  charts0.obj charts1.obj charts2.obj charts3.obj intrpret.obj\
  27.  xdata.obj xgeneral.obj xdevice.obj\
  28.  xcharts0.obj xcharts1.obj xcharts2.obj xscreen.obj
  29.  
  30. $(name).exe : $(objs)
  31. # We are compiling in Large memory model with 16,384 bytes for stack storage.
  32.   $(CC) /F 4000 /o $(name) *.obj graphics.lib
  33. #
  34.